home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / os2 / adaptor.zip / ADAPT.ZIP / adaptor / src / include / labels.h < prev    next >
C/C++ Source or Header  |  1993-07-08  |  1KB  |  30 lines

  1. /*************************************************************************
  2. *                                                                        *
  3. *  Name : labels.h                                                       *
  4. *                                                                        *
  5. *  Purpose : Data Structures for Label Tables                            *
  6. *                                                                        *
  7. *  Author : Dr. Thomas Brandes, GMD, Z1.HR                               *
  8. *                                                                        *
  9. *  Date   : 15. 4. 1993                                                  *
  10. *                                                                        *
  11. *************************************************************************/
  12.  
  13. # if defined __STDC__ | defined __cplusplus
  14. # define ARGS(parameters)       parameters
  15. # else
  16. # define ARGS(parameters)       ()
  17. # endif
  18.  
  19. #define MAX_LABELS 200
  20.  
  21. extern void InitLabels ();
  22.  
  23. extern void NewLabel ARGS((int name, int used, int defined, int inDos));
  24.  
  25. extern void LabelDo ARGS((int label));
  26.  
  27. extern int LabelDefine ARGS((int label));
  28.            
  29. extern int LabelUse ARGS((int label));
  30.